projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75a1514
)
Fix syntax error in obsolete message function
author
Lars Ingebrigtsen
<larsi@gnus.org>
Sun, 6 Mar 2022 18:34:54 +0000
(19:34 +0100)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Sun, 6 Mar 2022 18:34:54 +0000
(19:34 +0100)
* lisp/gnus/message.el (message-send-mail-function): Fix syntax error.
lisp/gnus/message.el
patch
|
blob
|
history
diff --git
a/lisp/gnus/message.el
b/lisp/gnus/message.el
index 800c7dcea031e3c565e81cb4790a5a55d9749b09..a5b3d404671c76636aa1636667f976da69bd3bb8 100644
(file)
--- a/
lisp/gnus/message.el
+++ b/
lisp/gnus/message.el
@@
-716,7
+716,7
@@
The function accepts 1 parameter which is the matched prefix."
(defvar sendmail-program)
(cond ((executable-find sendmail-program)
#'message-send-mail-with-sendmail)
- ((bound-and-true-p
'
smtpmail-default-smtp-server)
+ ((bound-and-true-p smtpmail-default-smtp-server)
#'message-smtpmail-send-it)
(t
#'message-send-mail-with-mailclient)))